======================================================================================================

Limitations !

======================================================================================================

- As blitzbasic dont support QWORD values (64 bit). The max file size for the blitzversion is 2.1 gigabyte.
	In the bass.bb you will find a value "Const BASS_Max_Supported_File_Size =  1073741824"
	You can see that my default is 1 Gigabyte. Do not use more than 2147483647 bytes !
	To avoid any problems with plugins like mix etc dont use the maximum possible, 1GB is a cool value. :) 
	If there are no bigger files in the system, we have no problems with other commands like "Getposition". 
	Blitzbass will not load any file bigger than this. So no longer MAVs. If the file is bigger, the load 	function returns 0.

=== bass.dll ============================================================================================

- BASS_ChannelSetSync%(Han_dle,typ%,param%,proc*,user%)
	 You must give 2 values for parameter (Handle,typ,param2,param1,proc*,user) in the reverse order (QWORD)

======================================================================================================
===bass_mix.dll=========================================================================================

- BASS_Mixer_ChannelSetSync%(Handle,typ%,param%,proc*,user%) 
	You must give to values for parameter (Handle,typ,param2,param1,proc*,user) in the reverse order (QWORD)

======================================================================================================

Bugs !

======================================================================================================

At the moment, nothing. :)

======================================================================================================

